/* ============================================================
   main.css — Jaya Cab Lanka
   Covers: home, fleet, services, tours, contact pages
   ============================================================ */

/* ── CSS VARIABLES ── */
:root {
  --gold:   #C9A84C;
  --gold-l: #E8C870;
  --gold-d: rgba(201, 168, 76, 0.1);
  --ink:    #070401;
  --ink2:   #090912;
  --ink3:   #0E0E1B;
  --card:   rgba(10, 10, 20, 0.88);
  --text:   #EAE6DA;
  --muted:  #c0c0c0;
  --border: rgba(201, 168, 76, 0.14);
  --green:  #22C55E;
  --r:      1400px;
}

/* ── RESET ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Syne', sans-serif;
  background: var(--ink);
  color: var(--text);
  overflow-x: hidden;
}

/* ── PROGRESS BAR ── */
#progress-bar,
#pb {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-l));
  z-index: 9999;
  width: 0;
  transition: width 0.1s;
}

/* ── CURSOR ── */
.cur {
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transition: transform .15s;
  mix-blend-mode: screen;
}

.cur-r {
  width: 38px;
  height: 38px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9997;
  transition: width .3s, height .3s;
}

/* Hide cursor on touch devices */
@media (hover: none) {
  .cur, .cur-r { display: none; }
}

/* ── GRAIN OVERLAY ── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  opacity: .6;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 500;
  padding: 0 2rem;
  transition: all .4s;
}

#nav.scrolled {
  background: rgba(5, 5, 10, .96);
  backdrop-filter: blur(30px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--r);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-mark {
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 1rem;
}

/* ===== MOBILE FIRST (default - small screens) ===== */
a.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 0.5rem;
}

a.logo img {
  height: 50px;        /* 📱 Mobile - podi */
  width: auto;
  object-fit: contain;
  margin-top: 2px;
}

/* ===== TABLET (768px and up) ===== */
@media (min-width: 768px) {
  a.logo img {
    height: 65px;      /* 📟 Tablet - medium */
    margin-top: 2px;
  }
}

/* ===== DESKTOP (1024px and up) ===== */
@media (min-width: 1024px) {
  a.logo img {
    height: 70px;      /* 🖥️ Desktop - loku (uba danna size eka) */
    margin-top: 2px;
  }
}


.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  color: rgba(255, 255, 255, .65);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-decoration: none;
  transition: color .3s;
  position: relative;
  text-transform: uppercase;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .3s;
}

.nav-links a:hover,
.nav-links a.active { color: #fff; }

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-nav-call,
.nav-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, .7);
  font-size: .8rem;
  font-weight: 600;
  text-decoration: none;
  transition: color .3s;
}

.btn-nav-call:hover,
.nav-phone:hover { color: var(--gold); }

.btn-nav-call i,
.nav-phone i { color: var(--gold); }

/* ── Hamburger ── */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.3rem;
  color: var(--text);
  padding: .4rem .6rem;
  border-radius: 8px;
  transition: background .2s;
}

.hamburger:hover { background: rgba(255, 255, 255, .06); }

/* ── Mobile Menu ── */
#mob-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5, 8, 14, .97);
  z-index: 600;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 2rem 1.5rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

#mob-menu.open { display: flex; }

#mob-menu a {
  font-family: 'Cormorant Garant', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  padding: .6rem 1.5rem;
  border-radius: 10px;
  width: 100%;
  text-align: center;
  transition: background .2s, color .2s;
}

#mob-menu a:hover,
#mob-menu a.active {
  background: rgba(201, 168, 76, .1);
  color: var(--gold);
}

.mob-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  color: var(--text);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}

.mob-close:hover { background: rgba(255, 255, 255, .12); }

.mob-actions {
  display: flex;
  flex-direction: column;
  gap: .8rem;
  width: 100%;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.mob-actions a {
  font-size: .9rem !important;
  padding: .85rem 1rem !important;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-g {
  background: var(--gold);
  color: #000;
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .65rem 1.5rem;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all .3s;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.btn-g:hover {
  background: var(--gold-l);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(201, 168, 76, .4);
}

.btn-o {
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .06em;
  padding: .65rem 1.5rem;
  border-radius: 100px;
  text-decoration: none;
  cursor: pointer;
  background: transparent;
  transition: all .3s;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.btn-o:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-wa {
  background: var(--green);
  color: #fff;
  font-weight: 700;
  font-size: .85rem;
  padding: .9rem 2rem;
  border-radius: 100px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all .3s;
  font-family: 'Syne', sans-serif;
}

.btn-wa:hover {
  background: #1db856;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(34, 197, 94, .35);
}

.btn-call {
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 600;
  font-size: .85rem;
  padding: .9rem 2rem;
  border-radius: 100px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all .3s;
}

.btn-call:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 76px;

  /* Background image with overlay */
  background-image: linear-gradient(
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0.5)
  ), url('../image/hero_bg.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 65% 45%, rgba(201, 168, 76, .07) 0%, transparent 65%),
    radial-gradient(ellipse 40% 70% at 10% 90%, rgba(201, 168, 76, .04) 0%, transparent 60%),
    linear-gradient(160deg, var(--ink) 0%, #0a091815 40%, var(--ink) 100%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.o1 {
  width: 700px;
  height: 700px;
  background: rgba(201, 168, 76, .055);
  top: -200px;
  right: -200px;
  animation: drift1 12s ease-in-out infinite;
}

.o2 {
  width: 500px;
  height: 500px;
  background: rgba(201, 168, 76, .04);
  bottom: -100px;
  left: -50px;
  animation: drift2 16s ease-in-out infinite;
}

.o3 {
  width: 300px;
  height: 300px;
  background: rgba(80, 60, 180, .05);
  top: 40%;
  left: 38%;
  animation: drift1 10s ease-in-out infinite reverse;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, .03) 1px, transparent 1px);
  background-size: 80px 80px;
}

.hero-inner {
  max-width: var(--r);
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--gold-d);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: .42rem 1rem;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

.badge-pulse {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-title {
  font-family: 'Cormorant Garant', serif;
  font-size: clamp(3.5rem, 6vw, 6.5rem);
  font-weight: 700;
  line-height: .95;
  letter-spacing: -.02em;
  color: #fff;
  margin-bottom: 1.6rem;
}

.hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold), var(--gold-l));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 460px;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}

.stat { text-align: center; }

.stat-n {
  font-family: 'Cormorant Garant', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-l {
  font-size: .65rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-top: 4px;
}

/* ── BOOKING FORM CARD ── */
.form-card {
  background: rgba(9, 9, 18, 0.39);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.2rem;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-l), var(--gold));
}

.form-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(201, 168, 76, .05) 0%, transparent 70%);
  pointer-events: none;
}

.fh {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.8rem;
}

.fh-icon {
  width: 42px;
  height: 42px;
  background: var(--gold-d);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
}

.ft {
  font-family: 'Cormorant Garant', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.fs {
  font-size: .72rem;
  color: var(--muted);
  margin-top: 2px;
}

.fg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
}

.fc { grid-column: 1 / -1; }

.fg2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
  grid-column: 1 / -1;
}

.fl {
  display: block;
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--muted);
  margin-bottom: .45rem;
}

.fi {
  width: 100%;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 11px;
  padding: .72rem 1rem;
  color: #fff;
  font-size: .85rem;
  font-family: 'Syne', sans-serif;
  outline: none;
  transition: all .3s;
}

/* Select fix */
select.fi {
  color: #ffffff !important;
  background-color: #272727fd !important;
}

select.fi option {
  color: #ffffff !important;
  background-color: #2e2d2d !important;
  font-weight: 500;
}

/* Placeholder option (empty value) */
select.fi option[value=""] {
  color: #888 !important;
}
.fi::placeholder { color: rgba(255, 255, 255, .2); }

.fi:focus {
  border-color: var(--gold);
  background: rgba(201, 168, 76, .04);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, .1);
}

select.fi {
  background: rgba(9, 9, 18, .95);
  cursor: pointer;
  color-scheme: dark;
}

input[type=date].fi,
input[type=time].fi { color-scheme: dark; }

.btn-book {
  width: 100%;
  padding: .95rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-l));
  color: #000;
  font-weight: 800;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all .3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: .3rem;
  font-family: 'Syne', sans-serif;
}

.btn-book:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 45px rgba(201, 168, 76, .45);
}

/* ============================================================
   SHARED SECTION STYLES
   ============================================================ */
.section { padding: 7rem 2rem; }

.si {
  max-width: var(--r);
  margin: 0 auto;
}

.sh {
  text-align: center;
  margin-bottom: 4.5rem;
}

.stag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--gold);
  margin-bottom: .8rem;
}

.stag span {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.stitle {
  font-family: 'Cormorant Garant', serif;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
  margin-bottom: .9rem;
}

.stitle em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold), var(--gold-l));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ssub {
  color: var(--muted);
  font-size: .95rem;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ── REVEAL ANIMATION ── */
.r {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity .9s ease, transform .9s ease;
}

.r.v {
  opacity: 1;
  transform: none;
}

.rd1 { transition-delay: .1s; }
.rd2 { transition-delay: .2s; }
.rd3 { transition-delay: .3s; }
.rd4 { transition-delay: .4s; }

/* ============================================================
   STATS STRIP
   ============================================================ */
#stats-strip {
  background: var(--ink2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-inner {
  max-width: var(--r);
  margin: 0 auto;
  padding: 2.5rem 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.ss-n {
  font-family: 'Cormorant Garant', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.ss-l {
  font-size: .7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-top: 5px;
}

.ss-div { border-right: 1px solid var(--border); }

/* ============================================================
   WHY US — FEATURES
   ============================================================ */
#whyus { background: var(--ink2); }

.feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.feat-card {
  background: rgba(255, 255, 255, .022);
  border: 1px solid rgba(255, 255, 255, .055);
  border-radius: 20px;
  padding: 2rem 1.6rem;
  transition: all .4s cubic-bezier(.23, 1, .32, 1);
  position: relative;
  overflow: hidden;
}

.feat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: radial-gradient(circle at 50% 0%, rgba(201, 168, 76, .09) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .4s;
}

.feat-card:hover {
  border-color: rgba(201, 168, 76, .3);
  transform: translateY(-10px);
  box-shadow: 0 35px 70px rgba(0, 0, 0, .5);
}

.feat-card:hover::before { opacity: 1; }

.fi-icon {
  width: 52px;
  height: 52px;
  background: var(--gold-d);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 1.4rem;
  transition: all .35s;
}

.feat-card:hover .fi-icon {
  background: var(--gold);
  color: #000;
  transform: rotate(-8deg);
}

.feat-card h3 {
  font-family: 'Cormorant Garant', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .6rem;
}

.feat-card p {
  font-size: .83rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ============================================================
   SERVICES PREVIEW (HOME)
   ============================================================ */
#services-prev { background: var(--ink); }

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.svc-card {
  background: rgba(255, 255, 255, .02);
  border: 1px solid rgba(255, 255, 255, .055);
  border-radius: 20px;
  padding: 2.2rem 2rem;
  transition: all .4s;
  position: relative;
  overflow: hidden;
  cursor: default;
}

.svc-num {
  font-family: 'Cormorant Garant', serif;
  font-size: 5rem;
  font-weight: 700;
  color: rgba(201, 168, 76, .07);
  position: absolute;
  top: -10px;
  right: 20px;
  line-height: 1;
  pointer-events: none;
  transition: color .4s;
}

.svc-card:hover .svc-num { color: rgba(201, 168, 76, .14); }

.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-l));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s;
}

.svc-card:hover::after { transform: scaleX(1); }

.svc-card:hover {
  border-color: rgba(201, 168, 76, .22);
  transform: translateY(-7px);
}

.svc-icon {
  width: 54px;
  height: 54px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.4rem;
}

.svc-name {
  font-family: 'Cormorant Garant', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .6rem;
}

.svc-desc {
  font-size: .83rem;
  color: var(--muted);
  line-height: 1.75;
}

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  margin-top: 1.1rem;
  letter-spacing: .06em;
  transition: gap .3s;
}

.svc-card:hover .svc-link { gap: 10px; }

/* ============================================================
   ROUTES HORIZONTAL SCROLL
   ============================================================ */
#routes {
  background: var(--ink2);
  overflow: hidden;
}

.routes-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.routes-scroll {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  padding-bottom: 1.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) rgba(255, 255, 255, .05);
  cursor: grab;
}

.routes-scroll:active { cursor: grabbing; }

.routes-scroll::-webkit-scrollbar { height: 4px; }
.routes-scroll::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, .05);
  border-radius: 10px;
}
.routes-scroll::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 10px;
}

.rt-card {
  min-width: 280px;
  background: rgba(255, 255, 255, .025);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 20px;
  padding: 1.6rem;
  flex-shrink: 0;
  transition: all .35s;
  text-decoration: none;
  display: block;
}

.rt-card:hover {
  border-color: rgba(201, 168, 76, .35);
  background: rgba(201, 168, 76, .04);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .5);
}

.rt-emoji {
  width: 56px;
  height: 56px;
  background: var(--gold-d);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
}

.rt-name {
  font-family: 'Cormorant Garant', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .3rem;
}

.rt-tag {
  font-size: .73rem;
  color: var(--muted);
}

.rt-meta {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.rt-m {
  font-size: .7rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

.rt-m i {
  color: var(--gold);
  font-size: .65rem;
}

.rt-arrow {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: .8rem;
  color: var(--gold);
  font-size: .8rem;
  opacity: 0;
  transform: translateX(-5px);
  transition: all .3s;
}

.rt-card:hover .rt-arrow {
  opacity: 1;
  transform: none;
}

/* ============================================================
   FLEET PREVIEW (HOME)
   ============================================================ */
#fleet-prev { background: var(--ink); }

.fleet-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.vc {
  background: rgba(255, 255, 255, .025);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 22px;
  overflow: hidden;
  transition: all .4s cubic-bezier(.23, 1, .32, 1);
  position: relative;
}

.vc:hover {
  border-color: rgba(201, 168, 76, .35);
  transform: translateY(-12px);
  box-shadow: 0 50px 100px rgba(0, 0, 0, .6);
}

.vc-thumb {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(201, 168, 76, .07), rgba(201, 168, 76, .02));
  position: relative;
  overflow: hidden;
}
.vc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.3s ease;
}

.vc r:hover .vc-img {
  transform: scale(1.05); /* subtle zoom on hover */
}


.vc-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gold);
  color: #000;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: 100px;
}

.vc-body { padding: 1.5rem; }

.vc-name {
  font-family: 'Cormorant Garant', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .3rem;
}

.vc-desc {
  font-size: .82rem;
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.vc-specs {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.4rem;
  flex-wrap: wrap;
}

.vc-spec {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .75rem;
  color: var(--muted);
}

.vc-spec i {
  color: var(--gold);
  font-size: .7rem;
}

.vc-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: .85rem;
  background: var(--gold-d);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--gold);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .07em;
  text-decoration: none;
  transition: all .3s;
  font-family: 'Syne', sans-serif;
}

.vc-cta:hover {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testi { background: var(--ink2); }

.testi-wrap { position: relative; overflow: hidden; }

.testi-slider {
  display: flex;
  gap: 1.5rem;
  transition: transform .6s cubic-bezier(.25, .46, .45, .94);
}

.tc {
  min-width: calc(33.333% - 1rem);
  background: rgba(255, 255, 255, .022);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 20px;
  padding: 2.2rem;
  position: relative;
  transition: all .4s;
  flex-shrink: 0;
}

.tc:hover {
  border-color: rgba(201, 168, 76, .25);
  transform: translateY(-6px);
}

.tc-q {
  position: absolute;
  top: 1.5rem;
  right: 1.8rem;
  font-family: 'Cormorant Garant', serif;
  font-size: 5rem;
  color: rgba(201, 168, 76, .08);
  line-height: 1;
}

.stars {
  color: var(--gold);
  font-size: .8rem;
  letter-spacing: .08em;
  margin-bottom: 1rem;
}

.tc-text {
  font-size: .88rem;
  color: rgba(255, 255, 255, .62);
  line-height: 1.85;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.tc-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tc-av {
  width: 44px;
  height: 44px;
  background: var(--gold-d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garant', serif;
  font-weight: 700;
  color: var(--gold);
  font-size: 1.1rem;
  border: 1.5px solid var(--border);
}

.tc-name {
  font-weight: 700;
  color: #fff;
  font-size: .9rem;
}

.tc-loc {
  font-size: .7rem;
  color: var(--muted);
  margin-top: 1px;
}

.testi-dots {
  display: flex;
  justify-content: center;
  gap: .6rem;
  margin-top: 2.5rem;
}

.tdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  cursor: pointer;
  transition: all .3s;
  border: none;
}

.tdot.active {
  background: var(--gold);
  transform: scale(1.2);
}

.testi-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.tn-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
  font-size: .85rem;
}

.tn-btn:hover {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
#cta {
  background: linear-gradient(160deg, #0c0a1e 0%, #120d08 50%, #080810 100%);
  position: relative;
  overflow: hidden;
    padding: 0;
}


#cta .cta-bg-wrap {
  position: relative;
  background-image: url('../image/cta.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* parallax effect */
  padding: 100px 0;
}

/* Dark overlay — text readable වෙන්න */
#cta .cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.507);
  z-index: 0;
}

/* Content z-index fix */
#cta .si {
  position: relative;
  z-index: 1;
}

/* Text color override for dark bg */
#cta .cta-title,
#cta .cta-sub,
#cta .stag {
  color: #fff;
}

#cta .stag span {
  background: rgba(255, 255, 255, 0.4);
}

#cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(201, 168, 76, .1) 0%, transparent 70%);
}

.cta-inner {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}

.cta-title {
  font-family: 'Cormorant Garant', serif;
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.2rem;
  line-height: 1.05;
}

.cta-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold), var(--gold-l));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-sub {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 2.8rem;
}

.cta-btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ── CTA BANNER (fleet / services / tours) ── */
.cta-banner {
  background: linear-gradient(160deg, #0c0a1e 0%, #120d08 50%, #080810 100%);
  position: relative;
  overflow: hidden;
  padding: 6rem 2rem;
  text-align: center;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(201, 168, 76, .1) 0%, transparent 70%);
}

.cta-banner .cta-inner {
  position: relative;
  z-index: 2;
}

/* ============================================================
   CONTACT STRIP (HOME)
   ============================================================ */
#cs {
  background: #1a0f02;
  border-top: 1px solid var(--border);
}

.cs-inner {
  max-width: var(--r);
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.ci {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.ci-icon {
  width: 52px;
  height: 52px;
  background: var(--gold-d);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.ci-label {
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: .3rem;
}

.ci-val {
  font-size: .95rem;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: color .3s;
  display: block;
}

.ci-val:hover { color: var(--gold); }

.ci-note {
  font-size: .72rem;
  color: var(--muted);
  margin-top: 2px;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--ink2);
  border-top: 1px solid var(--border);
  padding: 4rem 2rem 2rem;
}

.ft-inner {
  max-width: var(--r);
  margin: 0 auto;
}

.ft-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.ft-desc {
  font-size: .83rem;
  color: var(--muted);
  line-height: 1.8;
  margin: 1rem 0 1.5rem;
}

.ft-socials {
  display: flex;
  gap: .7rem;
}

.s-btn {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: .85rem;
  text-decoration: none;
  transition: all .3s;
}

.s-btn:hover {
  background: var(--gold-d);
  border-color: var(--gold);
  color: var(--gold);
}

.ft-col h4 {
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--gold);
  margin-bottom: 1.3rem;
}

.ft-col ul { list-style: none; }

.ft-col ul li { margin-bottom: .7rem; }

.ft-col ul li a {
  color: var(--muted);
  font-size: .83rem;
  text-decoration: none;
  transition: color .3s;
  display: flex;
  align-items: center;
  gap: 7px;
}

.ft-col ul li a:hover { color: #fff; }

.ft-col ul li a i {
  font-size: .6rem;
  color: var(--gold);
}

.ft-ci {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-bottom: .8rem;
}

.ft-ci i {
  color: var(--gold);
  font-size: .8rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.ft-ci a,
.ft-ci span {
  color: var(--muted);
  font-size: .82rem;
  text-decoration: none;
  transition: color .3s;
  line-height: 1.5;
}

.ft-ci a:hover { color: #fff; }

.ft-bot {
  border-top: 1px solid rgba(255, 255, 255, .055);
  padding-top: 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.ft-copy {
  font-size: .78rem;
  color: var(--muted);
}

.ft-copy span { color: var(--gold); }

.ft-credit {
  font-size: .75rem;
  color: var(--muted);
}

/* ============================================================
   FLOATING WhatsApp BUTTON & SCROLL-TO-TOP
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 400;
  text-decoration: none;
}

.wa-btn {
  width: 60px;
  height: 60px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(34, 197, 94, .4);
  transition: all .3s;
  position: relative;
}

.wa-btn:hover { transform: scale(1.1); }

.wa-ring {
  position: absolute;
  inset: -6px;
  border: 2px solid rgba(34, 197, 94, .3);
  border-radius: 50%;
  animation: ring 2.5s infinite;
}

#scrollTop {
  position: fixed;
  bottom: 6.5rem;
  right: 2rem;
  z-index: 400;
  width: 44px;
  height: 44px;
  background: var(--gold-d);
  border: none;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: all .3s;
  font-size: .85rem;
}

#scrollTop.show {
  opacity: 1;
  pointer-events: all;
}

#scrollTop:hover {
  background: var(--gold);
  color: #000;
}

/* ============================================================
   PAGE HERO (fleet, services, tours, contact)
   ============================================================ */
.page-hero {
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 76px;
}

.ph-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201, 168, 76, .08) 0%, transparent 65%),
    linear-gradient(180deg, var(--ink) 0%, #0c0a1a 100%);
}

.ph-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, .03) 1px, transparent 1px);
  background-size: 80px 80px;
}

.ph-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  width: 500px;
  height: 500px;
  background: rgba(201, 168, 76, .06);
  top: -100px;
  right: -100px;
  animation: drift1 12s ease-in-out infinite;
}

.ph-orb1 {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  pointer-events: none;
  width: 600px;
  height: 600px;
  background: rgba(201, 168, 76, .06);
  top: -150px;
  right: -100px;
  animation: drift1 12s ease-in-out infinite;
}

.ph-orb2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  pointer-events: none;
  width: 400px;
  height: 400px;
  background: rgba(100, 80, 220, .05);
  bottom: -100px;
  left: 100px;
  animation: drift2 16s ease-in-out infinite;
}

.ph-content {
  max-width: var(--r);
  width: 100%;
  margin: 0 auto;
  padding: 4rem 2rem;
  position: relative;
  z-index: 2;
}

.ph-breadcrumb,
.ph-bc {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 600;
}

.ph-breadcrumb a,
.ph-bc a {
  color: var(--muted);
  text-decoration: none;
  transition: color .3s;
}

.ph-breadcrumb a:hover,
.ph-bc a:hover { color: var(--gold); }

.ph-breadcrumb i,
.ph-bc i {
  font-size: .5rem;
  color: var(--gold);
}

.ph-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--gold);
  margin-bottom: .8rem;
}

.ph-tag span {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.ph-title {
  font-family: 'Cormorant Garant', serif;
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 700;
  color: #fff;
  line-height: .95;
  letter-spacing: -.02em;
  margin-bottom: 1.2rem;
}

.ph-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold), var(--gold-l));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ph-sub {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 580px;
}

/* ── Filter Tabs ── */
.filter-wrap {
  background: var(--ink2);
  border-bottom: 1px solid var(--border);
  padding: 1rem 2rem;
  position: sticky;
  top: 76px;
  z-index: 100;
}

.filter-inner {
  max-width: var(--r);
  margin: 0 auto;
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
}

.ftab {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 100px;
  color: var(--muted);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .5rem 1.2rem;
  cursor: pointer;
  transition: all .3s;
  font-family: 'Syne', sans-serif;
  white-space: nowrap;
}

.ftab:hover { border-color: var(--gold); color: var(--gold); }

.ftab.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
}

/* ============================================================
   FLEET PAGE — VEHICLE GRID
   ============================================================ */
#fleet-page { background: var(--ink); }

.veh-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.veh-card {
  background: rgba(255, 255, 255, .022);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 24px;
  overflow: hidden;
  transition: all .4s cubic-bezier(.23, 1, .32, 1);
}

.veh-card:hover {
  border-color: rgba(201, 168, 76, .35);
  transform: translateY(-12px);
  box-shadow: 0 50px 100px rgba(0, 0, 0, .6);
}

.veh-thumb {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(201, 168, 76, .08), rgba(201, 168, 76, .02));
  position: relative;
  overflow: hidden;
}

.veh-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 80%, rgba(201, 168, 76, .1) 0%, transparent 60%);
}

.veh-emoji {
  font-size: 6rem;
  transition: transform .4s;
  filter: drop-shadow(0 12px 30px rgba(201, 168, 76, .22));
  position: relative;
  z-index: 1;
}

.veh-card:hover .veh-emoji { transform: scale(1.12) translateY(-10px); }

.veh-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  color: #000;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .32rem .85rem;
  border-radius: 100px;
}

.veh-body { padding: 1.8rem; }

.veh-name {
  font-family: 'Cormorant Garant', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .3rem;
}

.veh-cat {
  font-size: .7rem;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: .8rem;
}

.veh-desc {
  font-size: .84rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.4rem;
}

.veh-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .6rem;
  margin-bottom: 1.5rem;
  padding: 1.2rem;
  background: rgba(255, 255, 255, .025);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .055);
}

.vs-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  color: var(--muted);
}

.vs-item i {
  color: var(--gold);
  font-size: .7rem;
  width: 14px;
}

.veh-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.5rem;
}

.am-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--gold-d);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: .28rem .7rem;
  font-size: .68rem;
  color: var(--gold);
  font-weight: 600;
}

.am-tag i { font-size: .6rem; }

.veh-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: .92rem;
  background: var(--gold-d);
  border: 1px solid var(--border);
  border-radius: 13px;
  color: var(--gold);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .08em;
  text-decoration: none;
  transition: all .3s;
  font-family: 'Syne', sans-serif;
}

.veh-cta:hover {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}

/* ── Compare Table ── */
#compare { background: var(--ink2); }

.table-wrap {
  overflow-x: auto;
  border-radius: 20px;
  border: 1px solid var(--border);
  margin-top: 2.5rem;
  -webkit-overflow-scrolling: touch;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

thead { background: rgba(201, 168, 76, .08); }

th {
  padding: 1.2rem 1.5rem;
  text-align: left;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--gold);
  border-bottom: 1px solid var(--border);
}

th:first-child { min-width: 160px; }

td {
  padding: 1.1rem 1.5rem;
  font-size: .85rem;
  border-bottom: 1px solid rgba(255, 255, 255, .04);
}

td:first-child {
  color: var(--muted);
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
}

tr:last-child td { border-bottom: none; }
tr:nth-child(even) { background: rgba(255, 255, 255, .015); }

.tick { color: var(--gold); font-size: .85rem; }
.cross { color: rgba(255, 255, 255, .25); font-size: .85rem; }

/* ── Amenities Grid (fleet page) ── */
#amenities { background: var(--ink); }

.am-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 2.5rem;
}

.am-card {
  background: rgba(255, 255, 255, .022);
  border: 1px solid rgba(255, 255, 255, .055);
  border-radius: 18px;
  padding: 1.6rem;
  text-align: center;
  transition: all .4s;
}

.am-card:hover {
  border-color: rgba(201, 168, 76, .3);
  transform: translateY(-6px);
}

.am-icon {
  width: 52px;
  height: 52px;
  background: var(--gold-d);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
  margin: 0 auto 1rem;
  transition: all .3s;
}

.am-card:hover .am-icon {
  background: var(--gold);
  color: #000;
  transform: rotate(-8deg);
}

.am-name {
  font-weight: 700;
  color: #fff;
  font-size: .9rem;
  margin-bottom: .3rem;
}

.am-desc {
  font-size: .78rem;
  color: var(--muted);
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
#services { background: var(--ink); }

.svc-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.svc-big-card {
  background: rgba(255, 255, 255, .022);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 24px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all .4s;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: start;
}

.svc-big-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-l));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s;
}

.svc-big-card:hover::after { transform: scaleX(1); }

.svc-big-card:hover {
  border-color: rgba(201, 168, 76, .25);
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .5);
}

.svc-big-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
  transition: transform .4s;
}

.svc-big-card:hover .svc-big-icon { transform: scale(1.1) rotate(-5deg); }

.svc-num-big {
  position: absolute;
  top: 1.8rem;
  right: 2rem;
  font-family: 'Cormorant Garant', serif;
  font-size: 6rem;
  font-weight: 700;
  color: rgba(201, 168, 76, .06);
  line-height: 1;
}

.svc-name-big {
  font-family: 'Cormorant Garant', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .6rem;
}

.svc-desc-big {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.svc-features {
  list-style: none;
  margin-bottom: 1.4rem;
}

.svc-features li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .8rem;
  color: var(--muted);
  margin-bottom: .5rem;
}

.svc-features li i {
  color: var(--gold);
  font-size: .7rem;
  flex-shrink: 0;
}

.svc-book-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--gold-d);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: .5rem 1.2rem;
  color: var(--gold);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
  transition: all .3s;
  font-family: 'Syne', sans-serif;
}

.svc-book-btn:hover {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}

/* ── Full-width service card ── */
.svc-full-card {
  background: rgba(255, 255, 255, .022);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 24px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  transition: all .4s;
  margin-top: 1.5rem;
}

.svc-full-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--gold), var(--gold-l));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .4s;
}

.svc-full-card:hover::after { transform: scaleY(1); }

.svc-full-card:hover {
  border-color: rgba(201, 168, 76, .2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
}

.sfc-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
}

.sfc-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.sfc-name {
  font-family: 'Cormorant Garant', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .4rem;
}

.sfc-desc {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── How It Works ── */
#how { background: var(--ink2); }

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 3rem;
}

.how-grid::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  z-index: 0;
}

.how-step {
  text-align: center;
  padding: 1.5rem;
  position: relative;
  z-index: 1;
}

.how-num {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--ink2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  transition: all .4s;
}

.how-num-inner {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold-d);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garant', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  transition: all .4s;
}

.how-step:hover .how-num-inner {
  background: var(--gold);
  color: #000;
}

.how-title {
  font-family: 'Cormorant Garant', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .5rem;
}

.how-desc {
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── FAQ ── */
#faq { background: var(--ink); }

.faq-wrap {
  max-width: 820px;
  margin: 0 auto;
  margin-top: 3rem;
}

.faq-item { border-bottom: 1px solid rgba(255, 255, 255, .055); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 0;
  cursor: pointer;
  font-weight: 600;
  color: #fff;
  font-size: .92rem;
  transition: color .3s;
  user-select: none;
}

.faq-q:hover { color: var(--gold); }

.faq-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold-d);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: .75rem;
  flex-shrink: 0;
  transition: all .35s;
}

.faq-item.open .faq-icon {
  background: var(--gold);
  color: #000;
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s;
}

.faq-a-inner {
  padding: 0 0 1.4rem;
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.85;
}

.faq-item.open .faq-a { max-height: 300px; }

/* ── Pricing ── */
#pricing { background: var(--ink2); }

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.price-card {
  background: rgba(255, 255, 255, .022);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 22px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all .4s;
}

.price-card.featured {
  border-color: rgba(201, 168, 76, .4);
  background: rgba(201, 168, 76, .04);
}

.price-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-l));
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .5);
}

.price-badge {
  display: inline-block;
  background: var(--gold);
  color: #000;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .28rem .75rem;
  border-radius: 100px;
  margin-bottom: 1.2rem;
}

.price-name {
  font-family: 'Cormorant Garant', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .4rem;
}

.price-tagline {
  font-size: .8rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.price-from {
  font-size: .72rem;
  color: var(--muted);
  margin-bottom: .2rem;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.price-amount {
  font-family: 'Cormorant Garant', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.price-amount span {
  font-size: 1rem;
  color: var(--muted);
}

.price-features {
  list-style: none;
  margin-bottom: 1.8rem;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .8rem;
  color: var(--muted);
  margin-bottom: .6rem;
}

.price-features li i {
  color: var(--gold);
  font-size: .7rem;
}

.price-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: .88rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .08em;
  text-decoration: none;
  transition: all .3s;
  font-family: 'Syne', sans-serif;
}

.price-cta.primary { background: var(--gold); color: #000; }

.price-cta.primary:hover {
  background: var(--gold-l);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(201, 168, 76, .4);
}

.price-cta.secondary {
  background: var(--gold-d);
  border: 1px solid var(--border);
  color: var(--gold);
}

.price-cta.secondary:hover {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}
/* ============================================================
   TOURS PAGE
   ============================================================ */
#destinations { background: var(--ink); }

.dest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.dest-card {
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all .4s;
    aspect-ratio: 3 / 4;
    border: 1px solid rgba(255, 255, 255, .05);
}

.dest-bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    transition: transform .6s cubic-bezier(.23, 1, .32, 1);
}

.dest-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
    filter: brightness(0.75);
}

.dest-card:hover .dest-bg { transform: scale(1.08); }

.dest-card:hover .dest-bg img {
    transform: scale(1.08);
}

.dest-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 5, 10, .95) 0%, rgba(5, 5, 10, .4) 50%, transparent 100%);
    transition: all .4s;
}

.dest-card:hover .dest-overlay {
    background: linear-gradient(to top, rgba(5, 5, 10, .98) 0%, rgba(5, 5, 10, .5) 50%, transparent 100%);
}

.dest-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.8rem;
    transform: translateY(10px);
    transition: transform .4s;
}

.dest-card:hover .dest-content { transform: none; }

.dest-region {
    font-size: .65rem;
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .18em;
    margin-bottom: .4rem;
}

.dest-name {
    font-family: 'Cormorant Garant', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: .4rem;
}

.dest-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: .8rem;
}

.dest-m {
    font-size: .72rem;
    color: rgba(255, 255, 255, .5);
    display: flex;
    align-items: center;
    gap: 4px;
}

.dest-m i {
    color: var(--gold);
    font-size: .65rem;
}

.dest-desc {
    font-size: .8rem;
    color: rgba(255, 255, 255, .55);
    line-height: 1.65;
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
    margin-bottom: 0;
}

.dest-card:hover .dest-desc {
    max-height: 80px;
    margin-bottom: .8rem;
}

.dest-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gold);
    color: #000;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .42rem 1rem;
    border-radius: 100px;
    text-decoration: none;
    opacity: 0;
    transform: translateY(8px);
    transition: all .4s;
    font-family: 'Syne', sans-serif;
}

.dest-card:hover .dest-btn {
    opacity: 1;
    transform: none;
}

/* ── Routes Table ── */
.routes-table-wrap {
    margin-top: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border);
    overflow: hidden;
}

.rt-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1.2rem 1.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, .045);
    transition: background .3s;
}

.rt-row:last-child { border-bottom: none; }

.rt-row:first-child {
    background: rgba(201, 168, 76, .06);
    border-bottom: 1px solid var(--border);
}

.rt-row:not(:first-child):hover { background: rgba(255, 255, 255, .02); }

.rt-head {
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .16em;
    color: var(--gold);
}

.rt-route {
    display: flex;
    align-items: center;
    gap: .8rem;
}

.rt-em {
    width: 38px;
    height: 38px;
    background: var(--gold-d);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.rt-rname {
    font-weight: 700;
    color: #fff;
    font-size: .9rem;
}

.rt-rtag {
    font-size: .72rem;
    color: var(--muted);
    margin-top: 1px;
}

.rt-dist,
.rt-time,
.rt-price-col { font-size: .85rem; color: var(--muted); }

.rt-price-col { color: var(--gold); font-weight: 700; }

.rt-book {
    background: var(--gold-d);
    border: 1px solid var(--border);
    color: var(--gold);
    font-size: .7rem;
    font-weight: 700;
    padding: .4rem .9rem;
    border-radius: 100px;
    text-decoration: none;
    white-space: nowrap;
    transition: all .3s;
    font-family: 'Syne', sans-serif;
}

.rt-book:hover {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
}

/* ── Tour Packages ── */
#packages { background: var(--ink); }

.pkg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.pkg-card {
    background: rgba(255, 255, 255, .022);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 24px;
    overflow: hidden;
    transition: all .4s;
}

.pkg-card.featured { border-color: rgba(201, 168, 76, .35); }

.pkg-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 90px rgba(0, 0, 0, .6);
}

.pkg-top {
    position: relative;
    overflow: hidden;
    height: 200px;
    border-radius: 12px 12px 0 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.2rem;
}

.pkg-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.pkg-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(0.6);
    transition: transform 0.5s ease;
}

.pkg-card:hover .pkg-bg img {
    transform: scale(1.08);
}

.pkg-top-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.70) 100%);
}

.pkg-duration,
.pkg-name {
    position: relative;
    z-index: 2;
}

.pkg-duration {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    opacity: .9;
    margin-bottom: .4rem;
}

.pkg-name {
    font-family: 'Cormorant Garant', serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.05;
}

.pkg-body {
    padding: 1.8rem;
    border-top: 1px solid rgba(255, 255, 255, .06);
}

.pkg-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 1.2rem;
    display: flex;
    flex-direction: column;
    gap: .45rem;
}

.pkg-highlights li {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    font-size: .85rem;
    line-height: 1.4;
}

.pkg-highlights li i {
    margin-top: .15rem;
    flex-shrink: 0;
    color: var(--gold);
}

.pkg-included {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    margin-bottom: 1.6rem;
}

.inc-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--gold-d);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: .22rem .6rem;
    font-size: .65rem;
    color: var(--gold);
    font-weight: 600;
}

.pkg-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, .055);
}

.pkg-price-from {
    font-size: .65rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .1em;
}

.pkg-price {
    font-family: 'Cormorant Garant', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.pkg-price span {
    font-family: 'Syne', sans-serif;
    font-size: .75rem;
    color: var(--muted);
}

.pkg-cta {
    background: var(--gold);
    color: #000;
    font-weight: 700;
    font-size: .75rem;
    letter-spacing: .08em;
    padding: .6rem 1.3rem;
    border-radius: 100px;
    text-decoration: none;
    transition: all .3s;
    flex-shrink: 0;
    font-family: 'Syne', sans-serif;
}

.pkg-cta:hover {
    background: var(--gold-l);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 168, 76, .4);
}

/* ── What's Included Section ── */
#included { background: var(--ink2); }

.inc-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.inc-list { list-style: none; }

.inc-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .055);
}

.inc-list li:last-child { border-bottom: none; }

.inc-icon {
    width: 44px;
    height: 44px;
    background: var(--gold-d);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
    transition: all .3s;
}

.inc-list li:hover .inc-icon {
    background: var(--gold);
    color: #000;
}

.inc-title {
    font-weight: 700;
    color: #fff;
    font-size: .9rem;
    margin-bottom: .2rem;
}

.inc-subtitle {
    font-size: .78rem;
    color: var(--muted);
}

.inc-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.inc-visual-orb {
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 76, .1) 0%, rgba(201, 168, 76, .02) 50%, transparent 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    position: relative;
}

.inc-visual-orb::before {
    content: '';
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, .08);
}

/* ── Center Image ── */
.inc-center-img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--gold);
    box-shadow: 0 0 32px rgba(201, 168, 76, .2);
    animation: float 4s ease-in-out infinite;
}

.inc-center-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* ── Satellite Images ── */
.inc-satellite {
    position: absolute;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--gold);
    box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}

.inc-satellite img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}

.inc-satellite:hover img {
    transform: scale(1.12);
}

.inc-sat1 { top: 0;    left: 50%; transform: translateX(-50%); }
.inc-sat2 { bottom: 0; left: 50%; transform: translateX(-50%); }
.inc-sat3 { left: 0;   top: 50%;  transform: translateY(-50%); }
.inc-sat4 { right: 0;  top: 50%;  transform: translateY(-50%); }



/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 5rem;
}

.ci-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.ci-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity .3s;
}

.ci-card:hover {
  border-color: rgba(201, 168, 76, .35);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .4);
}

.ci-card:hover::before { opacity: 1; }

.ci-value {
  font-family: 'Cormorant Garant', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: .4rem;
  line-height: 1.4;
}

.ci-value a {
  color: #fff;
  text-decoration: none;
  transition: color .3s;
}

.ci-value a:hover { color: var(--gold); }

.ci-sub {
  font-size: .78rem;
  color: var(--muted);
}

.contact-main {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: start;
}

/* ── Contact Form ── */
.form-wrap {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 3rem;
}

.form-head { margin-bottom: 2rem; }

.form-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--gold);
  margin-bottom: .8rem;
}

.form-tag span {
  display: block;
  width: 20px;
  height: 1px;
  background: var(--gold);
}

.form-title {
  font-family: 'Cormorant Garant', serif;
  font-size: 2rem;
  font-weight: 700;
}

.form-title em {
  color: var(--gold);
  font-style: italic;
}

.form-desc {
  font-size: .83rem;
  color: var(--muted);
  line-height: 1.7;
  margin-top: .6rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group { margin-bottom: 1.2rem; }

.form-group label {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--gold);
  margin-bottom: .5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: .85rem 1.1rem;
  color: var(--text);
  font-family: 'Syne', sans-serif;
  font-size: .88rem;
  transition: all .3s;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201, 168, 76, .05);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, .1);
}

.form-group select {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236B6880' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.1rem center;
}

.form-group select option {
  background: var(--ink2);
  color: var(--text);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

.form-btn { width: 100%; margin-top: .5rem; }

.form-note {
  font-size: .74rem;
  color: var(--muted);
  text-align: center;
  margin-top: 1rem;
}

.form-note i { color: var(--gold); margin-right: 4px; }

/* Success message */
.form-success { display: none; text-align: center; padding: 2rem; }

.form-success i {
  font-size: 3rem;
  color: var(--green);
  margin-bottom: 1rem;
  display: block;
}

.form-success h3 {
  font-family: 'Cormorant Garant', serif;
  font-size: 1.8rem;
  margin-bottom: .5rem;
}

.form-success p { color: var(--muted); font-size: .88rem; }

/* ── Contact Right Panel ── */
.contact-right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.cta-wa {
  background: linear-gradient(135deg, rgba(34, 197, 94, .12), rgba(34, 197, 94, .05));
  border: 1px solid rgba(34, 197, 94, .2);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all .3s;
}

.cta-wa:hover {
  border-color: rgba(34, 197, 94, .4);
  transform: translateY(-3px);
}

.cta-wa-icon {
  width: 70px;
  height: 70px;
  background: rgba(34, 197, 94, .15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--green);
  margin: 0 auto 1.2rem;
}

.cta-wa h3 {
  font-family: 'Cormorant Garant', serif;
  font-size: 1.5rem;
  margin-bottom: .5rem;
}

.cta-wa p {
  font-size: .83rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.quick-links {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
}

.ql-title {
  font-size: .6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.ql-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 12px;
  text-decoration: none;
  transition: all .3s;
  margin-bottom: .5rem;
}

.ql-item:last-child { margin-bottom: 0; }

.ql-item:hover { background: rgba(201, 168, 76, .06); }

.ql-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.ql-icon.gold { background: var(--gold-d); color: var(--gold); }
.ql-icon.green { background: rgba(34, 197, 94, .1); color: var(--green); }
.ql-icon.blue { background: rgba(59, 130, 246, .1); color: #60A5FA; }

.ql-text strong {
  display: block;
  font-size: .88rem;
  color: #fff;
  margin-bottom: 2px;
}

.ql-text span { font-size: .75rem; color: var(--muted); }

.ql-arrow {
  margin-left: auto;
  color: var(--muted);
  font-size: .75rem;
  transition: color .3s, transform .3s;
}

.ql-item:hover .ql-arrow {
  color: var(--gold);
  transform: translateX(3px);
}

.hours-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
}

.hours-title {
  font-size: .6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .04);
  font-size: .83rem;
}

.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: var(--muted); }
.hours-row .time { color: #fff; font-weight: 600; }

.badge-open {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(34, 197, 94, .12);
  color: var(--green);
  font-size: .6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: .25rem .7rem;
  border-radius: 100px;
}

.badge-open::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-dot 1.5s infinite;
}

/* ── Map Section ── */
.map-section { padding: 0 2rem 6rem; }

.map-inner {
  max-width: var(--r);
  margin: 0 auto;
}

.map-wrap {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  height: 420px;
  background: var(--card);
  position: relative;
}

/* FIXED: removed duplicate height on map-iframe; map-wrap handles it */
.map-iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(1) brightness(0.4) contrast(1.2);
}

/* ============================================================
   KEYFRAME ANIMATIONS
   ============================================================ */
@keyframes drift1 {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(30px, -20px); }
}

@keyframes drift2 {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(-20px, 30px); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(1.4); }
}

@keyframes ring {
  0%   { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.6); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-15px); }
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50%       { opacity: .3; }
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* ── ≤ 1100px — Tablet Landscape ── */
@media (max-width: 1100px) {
  .feat-grid  { grid-template-columns: repeat(2, 1fr); }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .ft-top     { grid-template-columns: 1fr 1fr; }
  .veh-grid   { grid-template-columns: repeat(2, 1fr); }
  .am-grid    { grid-template-columns: repeat(3, 1fr); }
  .how-grid   { grid-template-columns: 1fr 1fr; gap: 1.2rem; }

  .price-grid { grid-template-columns: 1fr 1fr; }
  .price-grid .price-card:last-child {
    grid-column: 1 / -1;
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }

  .dest-grid  { grid-template-columns: 1fr 1fr; gap: 1.2rem; }
  .dest-grid .dest-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }

  .pkg-grid   { grid-template-columns: 1fr 1fr; gap: 1.2rem; }
  .pkg-grid .pkg-card:last-child {
    grid-column: 1 / -1;
    max-width: 460px;
    margin: 0 auto;
    width: 100%;
  }

  .inc-split  { grid-template-columns: 1fr; gap: 2rem; }
  .inc-visual { display: none; }

  .contact-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .contact-main { grid-template-columns: 1fr; gap: 2rem; }
  .contact-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
  }
  .hours-card { grid-column: 1 / -1; }

  .rt-row { grid-template-columns: 2fr 0.8fr 0.8fr 1fr auto; gap: 0.8rem; }
}

/* ── ≤ 900px — Tablet Portrait ── */
@media (max-width: 900px) {
  .hero-inner       { grid-template-columns: 1fr; gap: 2.5rem; padding: 3rem 1.5rem; }
  .form-card        { max-width: 560px; margin: 0 auto; width: 100%; }
  .stats-inner      { grid-template-columns: repeat(2, 1fr); }
  .ss-div:nth-child(2) { border-right: none; }
  .svc-grid         { grid-template-columns: repeat(2, 1fr); }
  .fleet-grid       { grid-template-columns: repeat(2, 1fr); }
  .tc               { min-width: calc(50% - .75rem); }
  .cs-inner         { grid-template-columns: 1fr; gap: 1.5rem; }
  .am-grid          { grid-template-columns: repeat(2, 1fr); }
  .ph-title         { font-size: clamp(2.8rem, 7vw, 4rem); }
  .ph-sub           { font-size: .92rem; }
  .btn-nav-call,
  .nav-phone        { display: none; }
}

/* ── ≤ 768px — Mobile ── */
@media (max-width: 768px) {
  /* Nav */
  .nav-links, .nav-right { display: none; }
  .hamburger { display: flex; align-items: center; justify-content: center; }
  #nav .nav-inner { padding: 0 1.2rem; height: 60px; }
  .logo-name { font-size: 1rem; }
  .logo-tag  { font-size: .6rem; }
  .logo-mark { width: 34px; height: 34px; font-size: .9rem; }

  /* Services big cards */
  .svc-main-grid  { grid-template-columns: 1fr; }
  .svc-big-card   { padding: 1.4rem; }
  .svc-big-icon   { width: 52px; height: 52px; font-size: 1.3rem; }
  .svc-num-big    { font-size: 2rem; }
  .svc-name-big   { font-size: 1.15rem; }
  .svc-book-btn   { width: 100%; justify-content: center; padding: .8rem 1rem; }
  .svc-full-card  { padding: 1.2rem; }
  .sfc-inner      { flex-direction: column; align-items: flex-start; gap: .9rem; }
  .sfc-icon       { width: 48px; height: 48px; font-size: 1.2rem; }
  .sfc-inner .svc-book-btn { width: 100%; justify-content: center; }

  /* How */
  .how-grid { grid-template-columns: 1fr; }

  /* Pricing */
  .price-grid { grid-template-columns: 1fr; }
  .price-grid .price-card:last-child { grid-column: auto; max-width: 100%; margin: 0; }
  .price-card { padding: 1.5rem; }
  .price-amount { font-size: 1.7rem; }
  .price-cta  { width: 100%; justify-content: center; }

  /* FAQ */
  .faq-q { font-size: .88rem; padding: 1rem 0; }

  /* Routes table */
  .routes-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .rt-row {
    min-width: 540px;
    grid-template-columns: 2fr 0.75fr 0.75fr 1fr auto;
    padding: .85rem 1rem;
    gap: .7rem;
  }

  /* Destinations */
  .dest-grid  { grid-template-columns: 1fr; }
  .dest-grid .dest-card:last-child:nth-child(odd) { grid-column: auto; max-width: 100%; margin: 0; }

  /* Packages */
  .pkg-grid   { grid-template-columns: 1fr; }
  .pkg-grid .pkg-card:last-child { grid-column: auto; max-width: 100%; }
  .pkg-bottom { flex-direction: column; gap: .8rem; align-items: stretch; }
  .pkg-cta    { width: 100%; justify-content: center; }

  /* Included */
  .inc-split  { grid-template-columns: 1fr; }
  .inc-visual { display: none; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .contact-main { grid-template-columns: 1fr; }
  .contact-right { display: flex; flex-direction: column; }
  .hours-card { grid-column: auto; }
  .form-wrap  { padding: 1.5rem; }
  .form-title { font-size: 1.5rem; }
  .form-row   { grid-template-columns: 1fr; gap: 0; }
  .cta-wa .btn-wa { width: 100%; justify-content: center; }

  /* Map */
  .map-section { padding: 2rem 0; }
  .map-inner   { padding: 0 1.2rem; }
  .map-wrap    { height: 280px; border-radius: 12px; }

  /* Footer */
  .ft-top { grid-template-columns: 1fr; gap: 2rem; }
  .ft-bot { flex-direction: column; align-items: center; text-align: center; gap: .5rem; }
  footer  { padding: 3rem 1.2rem 1.8rem; }

  /* CTA */
  .cta-btns { flex-direction: column; align-items: stretch; }
  .btn-wa, .btn-call { justify-content: center; width: 100%; }
}

/* ── ≤ 640px — Small Mobile ── */
@media (max-width: 640px) {
  .section    { padding: 4rem 1.2rem; }
  .stitle     { font-size: clamp(2rem, 8vw, 2.8rem); }
  .ssub       { font-size: .88rem; }
  .sh         { margin-bottom: 3rem; }

  /* Hero */
  .hero-inner   { padding: 2rem 1.2rem 3rem; gap: 2rem; }
  .hero-title   { font-size: clamp(2.4rem, 9vw, 3.2rem); }
  .hero-sub     { font-size: .9rem; margin-bottom: 1.8rem; }
  .hero-badge   { font-size: .58rem; }
  .hero-actions { gap: .8rem; }
  .hero-actions .btn-g,
  .hero-actions .btn-o { font-size: .75rem; padding: .6rem 1.2rem; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: .8rem; padding-top: 1.5rem; }
  .stat-n     { font-size: 2rem; }

  /* Booking form */
  .form-card  { padding: 1.5rem 1.2rem; border-radius: 18px; }
  .fg, .fg2   { grid-template-columns: 1fr; gap: .75rem; }
  .ft         { font-size: 1.25rem; }
  .btn-book   { font-size: .75rem; padding: .85rem; }

  /* Stats strip */
  .stats-inner { grid-template-columns: repeat(2, 1fr); padding: 2rem 1.2rem; gap: 1.2rem; }
  .ss-n   { font-size: 2.4rem; }
  .ss-div { border-right: none; }

  /* Features */
  .feat-grid { grid-template-columns: 1fr; }
  .feat-card { padding: 1.6rem 1.4rem; }

  /* Services preview */
  .svc-grid { grid-template-columns: 1fr; }

  /* Routes */
  .routes-header { flex-direction: column; align-items: flex-start; }
  .rt-card { min-width: 240px; }

  /* Fleet */
  .fleet-grid { grid-template-columns: 1fr; }
  .fleet-head { flex-direction: column; align-items: flex-start; }
  .vc-thumb   { height: 160px; }
  .vc-emoji   { font-size: 4.5rem; }

  /* Testimonials */
  .tc { min-width: 100%; }
  .testi-nav { margin-top: 1rem; }

  /* CTA */
  .cta-title { font-size: clamp(2rem, 8vw, 3rem); }
  .cta-sub   { font-size: .88rem; margin-bottom: 2rem; }

  /* Contact strip */
  .cs-inner { padding: 3rem 1.2rem; }

  /* WA Float */
  .wa-float  { bottom: 1.5rem; right: 1.2rem; }
  #scrollTop { right: 1.2rem; bottom: 5.5rem; }

  /* Filter tabs — horizontal scroll */
  .filter-wrap  { top: 64px; }
  .filter-inner {
    padding: .8rem 1.2rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: .5rem;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .filter-inner::-webkit-scrollbar { display: none; }
  .ftab { font-size: .7rem; padding: .45rem 1rem; flex-shrink: 0; }

  /* Vehicle grid */
  .veh-grid   { grid-template-columns: 1fr; }
  .veh-thumb  { height: 160px; }
  .veh-emoji  { font-size: 4.5rem; }
  .veh-body   { padding: 1.3rem; }
  .veh-name   { font-size: 1.3rem; }

  /* Amenities */
  .am-grid { grid-template-columns: repeat(2, 1fr); gap: .9rem; }
  .am-card { padding: 1.2rem 1rem; }
  .am-icon { width: 42px; height: 42px; font-size: .95rem; }
  .am-name { font-size: .82rem; }
  .am-desc { font-size: .72rem; }

  /* Page hero */
  .page-hero   { min-height: 44vh; }
  .ph-content  { padding: 2.5rem 1.2rem 2rem; }
  .ph-title    { font-size: clamp(2.2rem, 9vw, 3rem); }
  .ph-sub      { font-size: .85rem; }
  .ph-breadcrumb, .ph-bc { font-size: .65rem; }

  /* CTA Banner */
  .cta-banner { padding: 4rem 1.2rem; }
  .cta-banner .cta-title { font-size: clamp(1.8rem, 8vw, 2.8rem); }
  .cta-banner .cta-btns  { flex-direction: column; align-items: stretch; }

  /* Mob menu */
  #mob-menu a { font-size: 2rem; }
  .mob-actions { width: 90%; }
  .mob-actions .btn-g,
  .mob-actions .btn-o { font-size: .78rem; white-space: nowrap; justify-content: center; }
}

/* ── ≤ 420px — Very Small Phones ── */
@media (max-width: 420px) {
  .hero-title { font-size: 2.2rem; }
  .stat-n     { font-size: 1.8rem; }
  .ss-n       { font-size: 2rem; }
  .form-card  { padding: 1.2rem 1rem; }
  .mob-actions .btn-g,
  .mob-actions .btn-o { font-size: .7rem; }
  .ph-title   { font-size: 1.55rem; }
  .stitle     { font-size: 1.35rem; }
  .dest-name  { font-size: 1.1rem; }
  .pkg-name   { font-size: 1.3rem; }
  .pkg-price  { font-size: 1.15rem; }
  .rt-row     { min-width: 500px; }
  .veh-specs-grid { grid-template-columns: 1fr; }
  .am-grid    { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .ci-card {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 1rem;
    padding: 1rem 1.1rem;
  }
  .ci-icon    { margin: 0; flex-shrink: 0; }
  .form-title { font-size: 1.3rem; }
  #nav .nav-inner { padding: 0 1rem; height: 56px; }
  .logo-name  { font-size: .9rem; }
  #mob-menu a { font-size: 1.2rem; }
}
